/-app ...
TopLayout.ts
main.css
start.ts
/-docs
/-files
FileTree.ts
SyncStorageAccess.ts
/-imports
/-storage
/-typings
errors.js
functions.ts
index.html
try.js
x
1
html {
2
  box-sizing: border-box;
3
}
4
​
5
*, *:before, *:after {
6
  box-sizing: inherit;
7
}
8
​
9
html {
10
  height: 100%;
11
  margin: 0px;
12
  padding: 0px;
13
  border: none;
14
  overflow: hidden;
15
}
16
​
17
body {
18
  height: 100%;
19
  margin: 0px;
20
  padding: 0px;
21
  border: none;
22
  overflow: hidden;
23
}
24
​
25
.teapo-main-content {
26
  position: fixed;
27
  left: 0px; top: 0px;
28
  height: 100%;
29
  width: 90%;
30
}
31
​
32
​
33
.teapo-flyout-scroller {
34
  position: fixed;
35
  left: 0px; top: 0px; width: 100%; height: 100%;
36
  overflow-y: hidden;
37
  overflow-x: scroll;
38
}
39
​
40
.teapo-flyout-scroller-bg {
41
  height: 100%;
42
  width: 180%;
43
  padding-left: 90%;
44
}
45
​
46
.teapo-flyout {
47
  position: relative;
48
  height: 100%;
49
  background: silver;
50
  z-index: 10000;
51
}
52
​
53
.teapo-file-content {
54
  display: none;
55
}
129:36